int[] data = { 19, 40, 75, 76, 90 };
println(data[0]); // Prints 19 to the console
println(data[2]); // Prints 75 to the console
println(data[5]); // ERROR! The last element of the array is 4